home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / headers.lqr / HEADERS.LBR / TRUTH.H
Encoding:
C/C++ Source or Header  |  2011-02-04  |  326 b   |  14 lines

  1. /*
  2.  * truth.h  14 Sep 83
  3.  *
  4.  *    This is the truth.
  5.  */
  6.  
  7. typedef int bool;            /* A true believer. */
  8. typedef int tris;            /* Yes, no, or maybe. */
  9.  
  10. #define FALSE        0        /* Negative. */
  11. #define TRUE        1        /* Positive. */
  12. #define MAYBE        2        /* Perhapsative. */
  13.                     /* Ideally, FALSE < MAYBE < TRUE. */
  14.